Skip to main content
POST
/
readings
[beta] Ingest Readings
curl --request POST \
  --url https://api.samsara.com/readings \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "data": [
    {
      "entityType": "asset",
      "happenedAtTime": "2023-10-27T10:00:00Z",
      "readingId": "airInletPressure",
      "value": "off",
      "entityId": "123451234512345",
      "externalId": "maintenanceId:250020"
    }
  ]
}
'
This response has no body data.

Documentation Index

Fetch the complete documentation index at: https://samsara-showcase.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
data
object[]
required

An array of readings data points to create.

Maximum array length: 1000

Response